-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@kreativ/core",
"version": "0.0.1",
"packageManager": "yarn@3.6.0",
"description": "Standard library-like utility methods.",
"type": "module",
"scripts": {
"build": "npm run test && npm run compile && npm run copy",
"clean": "rm -rf ./dist",
"copy": "mkdir -p ./dist && cp ./README.md ./package.json ./LICENSE ./dist",
"copy:watch": "onchange -i ./README.md ./package.json ./LICENSE -- npm run copy",
"compile": "tsc",
"compile:watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"__DEV__": "",
"format": "prettier src/",
"format:fix": "prettier --write src/",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch"
},
"author": "zastrowm",
"license": "MIT",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 120,
"bracketSpacing": true
},
"release-it": {
"git": {
"requireCleanWorkingDir": false,
"tag": true,
"commit": false,
"push": false
},
"npm": {
"ignoreVersion": true,
"publish": false,
"publishArgs": "--dry-run",
"skipChecks": true
},
"github": {
"release": true
}
},
"devDependencies": {
"@vitest/ui": "^1.3.1",
"onchange": "^7.1.0",
"prettier": "^3.2.4",
"release-it": "^17.0.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}