-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.4 KB
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": "quickjs-rust-near",
"type": "module",
"license": "MIT",
"scripts": {
"fmt:check": "prettier --check examples/aiproxy examples/fungibletoken examples/nft",
"fmt": "prettier --write examples/aiproxy examples/fungibletoken examples/nft quickjslib",
"serve": "http-server -p 8085 web4",
"serve-dist": "http-server -p 8085 web4/dist",
"web4bundle": "cd web4 && rollup -c rollup.config.js",
"test-e2e": "node --test ./e2e",
"test-web": "node --test web4",
"test-examples-fungibletoken-e2e": "cd examples/fungibletoken && ./build.sh && node --test e2e/*",
"test-examples-nft-e2e": "yarn examples-nft-web4bundle && yarn examples-nft-encrypted-web4bundle && cd examples/nft && ./build.sh && node --test e2e/*",
"test-examples-nft-localjs": "yarn examples-nft-encrypted-web4bundle && cd examples/nft && ./build.sh && node --test localjstest/*",
"test-purejs": "cd examples/purejs && ./build.sh && node --test localjstest",
"test-quickjslib": "cd quickjslib && ./build.sh && node --test",
"examples-nft-web4bundle": "cd examples/nft/web4 && rollup -c rollup.config.js",
"examples-nft-encrypted-web4bundle": "cd examples/nft/web4_encrypted_nft && node build.js",
"serve-examples-nft": "http-server -p 8085 examples/nft/web4",
"test-playwright-aiproxy": "yarn playwright test -c examples/aiproxy/playwright.config.js",
"aiproxy:web4bundle": "cd examples/aiproxy && rollup -c rollup.config.js",
"aiproxy:generateimportmap": "cd examples/aiproxy/web && jspm link index.html -o index.html",
"example-contracts:create:car": "ipfs-car pack examples/fungibletoken/out/fungible_token.wasm examples/nft/out/nft.wasm examples/minimumweb4/out/minimum_web4.wasm --output example-contracts.car",
"example-contracts:upload:car": "NODE_ENV=mainnet node ./node_modules/nearfs/scripts/upload-car.js example-contracts.car"
},
"jest": {
"transform": {}
},
"devDependencies": {
"@near-js/jsonrpc-client": "^1.3.4",
"@noble/curves": "^1.3.0",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"@web/rollup-plugin-html": "^2.3.0",
"chai": "^5.1.1",
"dotenv": "^16.4.7",
"html-minifier-terser": "^7.2.0",
"http-server": "^14.1.1",
"ipfs-car": "^2.0.0",
"jspm": "^3.3.4",
"near-sandbox": "^0.2.0",
"near-workspaces": "5.0.0",
"prettier": "^3.5.1",
"rollup": "^4.31.0",
"rollup-plugin-terser": "^7.0.2"
}
}