-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.29 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
{
"name": "NEAR-non-fungible-token",
"version": "0.0.1",
"description": "Implementation of NEP4 using Rust and AssemblyScript",
"author": "Near, Inc. <[email protected]>",
"license": "(MIT AND Apache-2.0)",
"scripts": {
"build": "yarn build:as",
"build:as": "(cd contracts/assemblyscript && node compile.js)",
"clean": "rm -rf ./out",
"test": "yarn test:unit:as",
"test:unit:as": "asp --verbose --nologo -c contracts/assemblyscript/as-pect.config.js -f unit.spec",
"simulator": "cp contracts/assemblyscript/simulator/sdk-patch-runtime.js node_modules/near-sdk-simulator/dist/runtime.js &&jest contracts/assemblyscript/simulator",
"deploy:dev": "echo n | near dev-deploy contracts/assemblyscript/build/release/main.wasm",
"test:dev": "jest contracts/assemblyscript/testnet",
"serve": "http-server contracts/assemblyscript/public_html",
"musicspacetrail": "(cd contracts/assemblyscript/public_html/musicspacetrail && rm -Rf dist && rollup -c rollup-config.js)"
},
"devDependencies": {
"@web/rollup-plugin-html": "^1.8.0",
"jest": "^26.6.3",
"near-sdk-as": "^3.2.3",
"rollup": "^2.53.2",
"rollup-plugin-terser": "^7.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"near-cli": "^3.0.1",
"wasm-crypto": "^0.0.12"
}
}