-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
49
50
51
{
"name": "@xgheaven/jsscript",
"version": "0.0.1",
"description": "JavaScript Runtime in JavaScript",
"bin": "./bin/jsscript",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"play": "tsc -p tsconfig.build.json; node ./dist/playground.js",
"test262": "test262-harness --hostType engine262 --hostPath ./bin/jsscript --host-args=\"run --test262\" --saveOnlyFailed",
"test262:ci": "node ./scripts/test262.js",
"test262:analysis": "node ./scripts/analysis.js",
"build": "tsc -p tsconfig.build.json",
"fmt": "prettier -w './{src,scripts,benchmark,docs}/**/*.{ts,tsx,js,md}'",
"fmt:check": "prettier -c './{src,scripts,benchmark,docs}/**/*.{ts,tsx,js,md}'",
"bench": "bash ./benchmark/run.sh",
"docs:dev": "rspress dev",
"docs:build": "rspress build"
},
"files": [
"dist"
],
"author": "XGHeaven <[email protected]>",
"license": "MIT",
"devDependencies": {
"@rspack/core": "^0.7.3",
"@types/node": "^20.10.4",
"@types/react": "^18.3.3",
"@types/yargs": "^17.0.32",
"ace-builds": "^1.35.0",
"eval5": "^1.4.7",
"luna-console": "^1.3.3",
"luna-data-grid": "^0.6.0",
"luna-dom-viewer": "^1.3.0",
"luna-object-viewer": "^0.3.1",
"prettier": "^3.1.1",
"process": "^0.11.10",
"react": "^18.3.1",
"react-ace": "^11.0.1",
"rspress": "^1.24.0",
"sablejs": "^1.1.0",
"test262-harness": "^9.2.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@babel/parser": "^7.23.6",
"@babel/types": "^7.23.6",
"acorn": "^8.11.2",
"yargs": "^17.7.2"
}
}