-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.14 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
{
"name": "@statewalker/tree",
"version": "0.10.2",
"description": "Graph traversal libraries",
"keywords": [],
"homepage": "https://github.com/statewalker/statewalker-tree",
"author": {
"name": "Mikhail Kotelnikov",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"files": [
"dist",
"src"
],
"module": "./dist/index.js",
"main": "./dist/index.js",
"jsdelivr": "./dist/index.js",
"unpkg": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./src/index.ts"
}
},
"devDependencies": {
"@statewalker/eslint-config": "*",
"@statewalker/typescript-config": "*",
"eslint": "^9.0.0",
"tsup": "^8.0.2",
"typescript": "^5.4.4",
"vitest": "^1.4.0"
},
"repository": {
"type": "git",
"url": "[email protected]:statewalker/statewalker-tree.git"
},
"scripts": {
"build": "yarn test && tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist",
"lint": "eslint \"**/*.ts\"",
"test": "vitest --run",
"test:watch": "vitest"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}