-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1015 Bytes
/
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
{
"name": "@dragonish/arrive-type",
"type": "module",
"private": false,
"version": "0.2.1",
"description": "generic type library of arrive package",
"author": "Light",
"license": "MIT",
"homepage": "https://github.com/LightAPIs/arrive-type",
"repository": "LightAPIs/arrive-type",
"main": "",
"types": "index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build",
"postbuild": "tsx ./build.ts",
"test": "mocha"
},
"keywords": [
"type",
"types",
"arrive"
],
"publishConfig": {
"directory": "publish"
},
"devDependencies": {
"@types/chai": "^4.3.8",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.6",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"chai": "^4.3.10",
"eslint": "^8.51.0",
"mocha": "^10.2.0",
"rollup-plugin-copy": "^3.5.0",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vite": "^4.4.11"
},
"peerDependencies": {
"arrive": ">2.5.0"
}
}