-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "wc_toolkit",
"version": "1.0.0",
"main": "./dist/legacy/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/legacy/index.js"
}
},
"keywords": [],
"repository": {
"type": "git",
"url": ""
},
"description": "",
"license": "MIT",
"author": {
"name": "Szymon Bretner (ncpa0cpl)",
"email": ""
},
"scripts": {
"test:tsc": "tsc --noEmit",
"test:unit": "vitest run",
"prepare": "husky install",
"build": "node ./scripts/build.mjs",
"fix:lint": "oxlint --fix ./src",
"test:lint": "oxlint ./src",
"fix:fmt": "dprint fmt",
"test:fmt": "dprint check",
"postinstall": "patch-package"
},
"packageManager": "[email protected]",
"devDependencies": {
"@ncpa0cpl/nodepack": "^2.3.3",
"dprint": "^0.47.2",
"esbuild": "^0.23.1",
"git-hook-tasks": "git+https://github.com/ncpa0cpl/git-hook-tasks#0.0.1",
"happy-dom": "^15.7.3",
"husky": "~8",
"oxlint": "^0.9.3",
"patch-package": "^8.0.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}