-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "Wcc",
"version": "0.1.0",
"description": "C-compiler for wasm",
"main": "index.js",
"scripts": {
"start": "npm run default",
"default": "npm run build-assets && npx vite --port=3000",
"build-assets": "make assets",
"lint": "eslint src/wcc/www/**/*.ts",
"lint:fix": "eslint --fix src/wcc/www/**/*.ts",
"release": "npx vite build",
"clean": "rm -rf public release"
},
"author": "tyfkda",
"repository": {
"type": "git",
"url": "https://github.com/tyfkda/xcc"
},
"license": "MIT",
"engines": {
"node": ">=20.0"
},
"devDependencies": {
"@types/alpinejs": "~3.13.6",
"@types/node": "~20.11.24",
"@types/path-browserify": "~1.0.2",
"@typescript-eslint/eslint-plugin": "~6.6.0",
"@typescript-eslint/parser": "~6.6.0",
"commander": "~12.0.0",
"sass": "~1.71.1",
"ts-node": "~10.9.2",
"vite": "~5.4.8"
},
"dependencies": {
"@wasmer/wasi": "~0.12.0",
"@wasmer/wasmfs": "~0.12.0",
"alpinejs": "~3.13.5",
"buffer": "~6.0.3",
"core-js": "~3.36.0",
"fflate": "~0.8.2",
"path-browserify": "~1.0.1",
"split.js": "~1.6.5"
}
}