-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 920 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
{
"name": "propathy",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]",
"description": "Operate objects via dot path",
"author": "KazariEX",
"license": "MIT",
"repository": "KazariEX/propathy",
"keywords": [
"property"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup-node",
"dev": "tsup-node --watch",
"prepack": "pnpm run build",
"release": "bumpp --no-push -c \"release: v%s\"",
"test": "vitest"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@zinkawaii/eslint-config": "^0.1.8",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"tsup": "^8.3.5",
"vitest": "^2.1.6"
}
}