-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.79 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
{
"name": "@praha/create-tsp",
"version": "0.0.0",
"description": "Create typescript package",
"keywords": [
"typescript",
"package",
"library"
],
"homepage": "https://github.com/praha-inc/tsp/blob/main/README.md",
"bugs": {
"url": "https://github.com/praha-inc/tsp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/praha-inc/tsp.git"
},
"license": "MIT",
"author": "PrAha Inc.",
"type": "module",
"bin": "dist/index.js",
"files": [
"dist",
"templates",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rslib build",
"lint:code": "eslint .",
"lint:type": "tsc --noEmit",
"version": "changeset",
"version:apply": "changeset version",
"version:publish": "changeset publish",
"version:prepublish": "pkg-pr-new publish --pnpm --compact"
},
"dependencies": {
"@changesets/cli": "^2.27.11",
"@changesets/config": "^3.0.5",
"@changesets/write": "^0.3.2",
"@clack/prompts": "^0.9.0",
"execa": "^9.5.2",
"find-up": "^7.0.0",
"picocolors": "^1.1.1",
"validate-npm-package-name": "^6.0.0",
"which": "^5.0.0"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@praha/eslint-config-common": "4.0.1",
"@praha/eslint-config-definer": "2.0.1",
"@praha/eslint-config-javascript": "3.0.1",
"@praha/eslint-config-style": "3.0.2",
"@praha/eslint-config-typescript": "3.0.2",
"@rslib/core": "0.3.0",
"@tsconfig/strictest": "2.0.5",
"@types/node": "22.10.5",
"@types/validate-npm-package-name": "4.0.2",
"@types/which": "3.0.4",
"eslint": "9.17.0",
"pkg-pr-new": "0.0.39",
"type-fest": "4.32.0",
"typescript": "5.7.3"
},
"packageManager": "[email protected]",
"publishConfig": {
"provenance": true
}
}