-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 822 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 822 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": "@shortwave/trie",
"version": "1.1.1",
"license": "MIT",
"main": "dist/trie.cjs",
"typings": "dist/index.d.ts",
"module": "dist/trie.mjs",
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"scripts": {
"release": "np",
"build": "vite build",
"bench": "vitest bench",
"test": "vitest run",
"dev": "vitest"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"repository": "github:shortwave/trie",
"devDependencies": {
"lodash": "^4.17.21",
"np": "^7.6.2",
"seedrandom": "^3.0.5",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-dts": "^1.0.4",
"vite-plugin-dts": "^1.5.0",
"vitest": "^0.23.4"
}
}