generated from antfu/starter-ts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@iamkhan21/base-utils",
"type": "module",
"version": "1.0.4",
"description": "Utils which usually used in my projects",
"author": "Ivan Khanevich <mail@iamkhan.tech>",
"license": "MIT",
"funding": "https://github.com/sponsors/iamkhan21",
"homepage": "https://github.com/iamkhan21/base-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iamkhan21/base-utils.git"
},
"bugs": "https://github.com/iamkhan21/base-utils/issues",
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"scripts": {
"clean": "rimraf ./dist && rimraf ./package",
"build": "unbuild",
"bumpp": "bumpp",
"publish": "clean-publish",
"postpublish": "nr clean",
"release": "run-s clean bumpp build publish",
"test": "vitest",
"format": "nx rome format ./src --write",
"lint": "nx rome check ./src --apply-suggested",
"typecheck": "tsc --noEmit",
"update:deps": "nu -i --latest && ni"
},
"dependencies": {
"dayjs": "1.11.7"
},
"devDependencies": {
"@antfu/ni": "0.18.8",
"@types/node": "18.11.12",
"bumpp": "8.2.1",
"clean-publish": "4.0.1",
"esno": "0.16.3",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"rimraf": "3.0.2",
"rome": "11.0.0",
"typescript": "4.9.4",
"unbuild": "1.0.2",
"vite": "4.0.0",
"vitest": "0.25.6"
},
"publishConfig": {
"directory": "package"
},
"clean-publish": {
"access": "public",
"tempDir": "package",
"files": [
".idea",
"src",
"tsconfig.json",
"build.config.ts",
".gitignore",
".npmrc"
]
}
}