-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.4 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": "app_name",
"description": "app_description",
"version": "0.0.0",
"type": "module",
"sideEffects": false,
"repository": "https://github.com/mizdra/app_name.git",
"author": "mizdra <[email protected]>",
"license": "CC0-1.0",
"private": true,
"exports": {
".": {
"default": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "npm run build && node bin/example-command.js",
"lint": "run-s -c lint:*",
"lint:tsc": "tsc",
"lint:eslint": "eslint --cache --cache-strategy content .",
"lint:prettier": "prettier --cache --check .",
"test": "vitest"
},
"prettier": "@mizdra/prettier-config-mizdra",
"devDependencies": {
"@mizdra/eslint-config-mizdra": "^4.0.1",
"@mizdra/prettier-config-mizdra": "^1.0.0",
"@types/eslint": "^8.37.0",
"@types/node": "^18.15.11",
"eslint": "^8.38.0",
"npm-run-all2": "^6.2.2",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"bin": {
"example-command": "bin/example-command.js"
},
"keywords": [],
"files": [
"bin",
"src",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/test",
"dist"
]
}