-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "cleana",
"type": "module",
"version": "1.1.0",
"description": "",
"license": "MIT",
"repository": "Saeid-Za/cleana",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "eslint . --fix",
"typecheck": "tsc --noEmit -p ./tsconfig.json",
"prepack": "npm run build",
"prepare:benchmark": "jiti benchmark/init.ts",
"benchmark": "jiti benchmark/index.ts",
"release": "npm run test && npm publish && git push --follow-tags",
"test": "vitest run --coverage"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/node": "^22.10.5",
"@vitest/coverage-v8": "^2.1.8",
"automd": "^0.3.12",
"changelogen": "^0.5.7",
"clean-deep": "^3.4.0",
"deep-cleaner": "^2.0.0-alpha.3",
"eslint": "^9.18.0",
"fast-clean": "^1.4.0",
"jiti": "^2.4.2",
"mitata": "^1.0.28",
"obj-clean": "^3.0.1",
"typescript": "^5.7.3",
"unbuild": "^3.3.0",
"vitest": "^2.1.8"
}
}