-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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": "@sec-ant/trie-map",
"version": "1.1.6",
"description": "TS/JS Map-like data structure backed by trie",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/*.ts",
"./dist/*.js"
],
"exports": {
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"scripts": {
"clean": "rm -fr ./dist/*.*s",
"lint": "eslint src",
"build": "npm run lint && npm run clean && swc ./src -d dist && tsc",
"serve": "http-server -c-1 dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Sec-ant/trie-map.git"
},
"homepage": "https://github.com/Sec-ant/trie-map",
"bugs": {
"url": "https://github.com/Sec-ant/trie-map/issues"
},
"keywords": [
"map",
"iterable",
"trie",
"typescript",
"esm",
"data-structure"
],
"author": "Ze-Zheng Wu",
"license": "MIT",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.29",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.32.0",
"typescript": "^5.0.3"
}
}