-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
35 lines (34 loc) · 1.34 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
{
"name": "quickjs-rust-near",
"type": "module",
"license": "MIT",
"scripts": {
"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 && cd examples/nft && ./build.sh && node --test e2e",
"test-examples-nft-localjs": "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",
"serve-examples-nft": "http-server -p 8085 examples/nft/web4",
"test-playwright-aiproxy": "yarn playwright test -c examples/aiproxy/playwright.config.js"
},
"jest": {
"transform": {}
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.2",
"@web/rollup-plugin-html": "^1.11.0",
"chai": "^5.1.1",
"http-server": "^14.1.1",
"near-workspaces": "4.0.0",
"rollup": "^2.79.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {}
}