-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
98 lines (98 loc) · 2.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "tasuku",
"version": "0.0.0-semantic-release",
"description": "タスク — The minimal task runner",
"keywords": [
"simple",
"minimal",
"task",
"runner",
"cli"
],
"license": "MIT",
"repository": "privatenumber/tasuku",
"funding": "https://github.com/privatenumber/tasuku?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "hiroki.osame@gmail.com"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"imports": {
"#tasuku": {
"types": "./src/index.ts",
"development": "./src/index.ts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"prepare": "simple-git-hooks",
"lint": "eslint --cache .",
"test": "tsx tests/tasuku.spec.ts",
"test:tsd": "tsd",
"type-check": "tsc --noEmit",
"build": "pkgroll --env.NODE_ENV=production --env.DEV=false --minify",
"prepack": "clean-pkg-json"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache"
},
"dependencies": {
"yoga-layout-prebuilt": "1.10.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.34.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"clean-pkg-json": "^1.2.0",
"eslint": "^8.41.0",
"ink": "github:privatenumber/ink#built/treeshake-lodash",
"ink-task-list": "^2.0.0",
"lint-staged": "^13.2.2",
"manten": "^0.7.0",
"p-map": "^5.3.0",
"pkgroll": "^1.10.0",
"react": "^17.0.2",
"simple-git-hooks": "^2.8.1",
"tsd": "^0.28.1",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"valtio": "^1.2.11"
},
"eslintConfig": {
"extends": "@pvtnbr",
"rules": {
"react/prop-types": "off",
"@typescript-eslint/no-shadow": [
"error",
{
"allow": [
"task",
"test"
]
}
]
}
},
"tsd": {
"directory": "tests"
}
}