generated from JoshuaKGoldberg/create-typescript-app
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.76 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
{
"name": "usd-query",
"version": "2.0.12",
"description": "Just make $ alias for document.querySelector.",
"repository": {
"type": "git",
"url": "https://github.com/laststance/usd-query"
},
"license": "MIT",
"author": "Ryota Murakami <[email protected]> (https://github.com/ryota-murakami)",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/types.d.ts",
"sideEffects": false,
"files": [
"bin/",
"lib/",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "tsup",
"prettier": "prettier --ignore-unknown --write .",
"lint": "eslint . --ext .js,.cjs,.ts",
"lint:fix": "eslint . --ext .js,.cjs,.ts --fix",
"typecheck": "tsc --noEmit",
"test": "vitest",
"release": "release-it",
"prepare": "husky install"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.4.0",
"@vitest/coverage-istanbul": "^2.0.1",
"console-fail-test": "^0.5.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-ts-prefixer": "^1.12.3",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vitest": "^0.5.0",
"husky": "^9.0.1",
"jsdom": "^25.0.0",
"lint-staged": "^15.0.1",
"prettier": "^3.0.2",
"release-it": "^18.0.0",
"tsup": "^8.0.0",
"typescript": "^5.1.6",
"vitest": "^2.0.1"
},
"engines": {
"node": ">=18"
},
"volta": {
"node": "18.17.1"
},
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
}
}