-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "aspkg-cli",
"version": "1.0.0",
"description": "AssemblyScript Packages CLI",
"main": "dist/lib.js",
"bin": {
"aspkg": "dist/cli.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc -w",
"aspkg": "node dist/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspkg/Website.git"
},
"keywords": [
"AssemblyScript",
"Package",
"aspkg",
"CLI"
],
"author": "Roman F. <romdotdog> + Jairus Tanaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/aspkg/Website/issues"
},
"homepage": "https://github.com/aspkg/Website#readme",
"dependencies": {
"blake3": "^2.1.4",
"chalk": "^4.1.1",
"open": "^8.2.1",
"undici-fetch": "^1.0.0-rc.4",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/node": "^16.4.0",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"eslint": "^7.30.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}