-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 873 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 873 Bytes
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
{
"name": "lightvm",
"version": "0.1.0-notable",
"description": "m",
"type": "module",
"typings": "./typings/index.d.ts",
"exports": {
".": {
"import": "./dist/index.min.mjs",
"require": "./dist/index.min.cjs"
},
"./assembly/dist/*": "./assembly/dist/*",
"./package.json": "./package.json"
},
"files": [
"dist",
"assembly/dist/"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./esbuild.config.js && asc ./assembly/src/index.ts -o ./assembly/dist/main.wasm",
"typecheck": "tsc"
},
"keywords": [
"lightvm"
],
"author": "SoTeen Studio",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.6.2"
},
"devDependencies": {
"@types/node": "^24.8.0",
"assemblyscript": "^0.28.9",
"esbuild": "^0.25.12",
"typescript": "^5.9.3"
}
}