-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 971 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 971 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
39
40
41
42
{
"name": "lightvm",
"version": "0.1.0-proto.0",
"description": "m",
"type": "module",
"typings": "./typings/index.d.ts",
"exports": {
".": {
"import": "./dist/index.min.mjs",
"require": "./dist/index.min.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist/index.min.cjs",
"dist/index.min.mjs",
"typings"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./esbuild.config.js",
"typecheck": "tsc"
},
"keywords": [
"lightvm"
],
"author": "SoTeen Studio",
"license": "Apache-2.0",
"dependencies": {
"chalk": "^5.6.2"
},
"optionalDependencies": {
"@lightvm/core-linux-x64": "0.1.0-proto.16",
"@lightvm/core-win32-x64": "0.1.0-proto.16",
"@lightvm/core-darwin-x64": "0.1.0-proto.16",
"@lightvm/core-android-arm64": "0.1.0-proto.16"
},
"devDependencies": {
"@types/node": "^24.8.0",
"esbuild": "^0.25.12"
}
}