-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1009 Bytes
/
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
{
"name": "stanks-as",
"version": "0.0.1",
"description": "",
"homepage": "https://github.com/tookey-io",
"repository": {
"type": "git",
"url": "git+https://github.com/tookey-io/stanks-as.git"
},
"bugs": {
"url": "https://github.com/tookey-io/stanks-as/issues"
},
"scripts": {
"test": "asp --verbose",
"test:ci": "asp --summary",
"asbuild:debug": "asc assembly/index.ts --target debug",
"asbuild:release": "asc assembly/index.ts --target release",
"asbuild": "npm run asbuild:debug && npm run asbuild:release",
"asbuild:watch": "onchange -i 'assembly/**/*' -- npm run asbuild:debug"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@as-pect/cli": "^8.0.1",
"assemblyscript": "^0.25.0",
"onchange": "^7.1.0"
},
"type": "module",
"types": "assembly/index.ts",
"exports": {
".": {
"import": "./build/release.js",
"types": "./build/release.d.ts"
}
},
"dependencies": {
"as-uuid": "^0.0.4"
}
}