-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.67 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "smile-js",
"version": "0.10.1",
"type": "module",
"description": "Javascript Smile implementation.",
"author": "Nick Ng",
"license": "Apache-2.0",
"homepage": "http://ngyewch.github.io/smile-js/",
"repository": {
"type": "git",
"url": "git+https://github.com/ngyewch/smile-js.git"
},
"bugs": {
"url": "https://github.com/ngyewch/smile-js/issues"
},
"exports": {
".": {
"import": "./dist/smile-js.js",
"require": "./dist/smile-js.cjs",
"types": "./dist/index.d.ts"
}
},
"module": "./dist/smile-js.js",
"main": "./dist/smile-js.cjs",
"types": "./dist/index.d.ts",
"bin": {
"smile-cli": "./bin/smile-cli"
},
"scripts": {
"doBuild": "vite build",
"doBuildCli": "vite build --config vite.config.cli.ts",
"check": "tsc --noEmit && tsc-strict",
"build": "run-s check doBuild doBuildCli",
"test": "tap",
"typedoc": "typedoc",
"postbuild": "validate-package-exports --check --verify",
"prepublishOnly": "validate-package-exports --check --verify"
},
"devDependencies": {
"@tapjs/core": "4.0.0",
"@types/node": "22.9.1",
"commander": "12.1.0",
"dependency-cruiser": "16.6.0",
"gh-pages": "6.2.0",
"glob": "11.0.0",
"js-base64": "3.7.7",
"js-testdiff": "1.0.5",
"lossless-json": "4.0.2",
"npm-run-all": "4.1.5",
"tap": "21.0.1",
"typedoc": "0.26.11",
"typescript": "5.6.3",
"typescript-strict-plugin": "2.4.4",
"validate-package-exports": "0.7.0",
"vite": "5.4.11",
"vite-plugin-dts": "4.3.0"
},
"dependencies": {
"bit-buffer": "0.2.5"
},
"keywords": [
"smile"
],
"files": [
"bin/*",
"dist/*"
]
}