forked from kwonoj/cld3-asm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
{
"name": "@loilo-inc/cld3-asm",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"scripts": {
"test": "vitest run",
"fmt": "prettier --write src",
"fmtcheck": "prettier --check src"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./src/lib/node/cld3.js": {
"import": "./dist/lib/node/cld3.js",
"types": "./src/lib/node/cld3.d.ts"
},
"./src/lib/web/cld3.js": {
"import": "./dist/lib/web/cld3.js",
"types": "./src/lib/web/cld3.d.ts"
},
"./src/lib/worker/cld3.js": {
"import": "./dist/lib/worker/cld3.js",
"types": "./src/lib/worker/cld3.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/loilo-inc/cld3-asm.git"
},
"license": "MIT",
"devDependencies": {
"@types/emscripten": "^1.39.13",
"@types/node": "^22",
"@types/shelljs": "^0.8.15",
"esbuild": "^0.24.0",
"prettier": "^3",
"shelljs": "^0.8.5",
"tsx": "^4.19.2",
"typescript": "^5",
"vitest": "^2.1.6"
}
}