-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.28 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
{
"name": "tiny-r-form",
"version": "0.0.2",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"repository": "https://github.com/Kazuhiro-Mimaki/tiny-r-form",
"scripts": {
"build": "tsup --config tsup.config.ts",
"lint": "npm run lint:eslint && npm run lint:type-check && npm run lint:format",
"lint:eslint": "eslint .",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:type-check": "tsc --noEmit",
"lint:format": "prettier . --check",
"lint:format:fix": "prettier . --write",
"sample-app": "npm --prefix ./examples/remix install && npm --prefix ./examples/remix run dev"
},
"files": [
"./dist/index.d.mts",
"./dist/index.mjs",
"./dist/index.mjs.map"
],
"author": "Kazuhiro Mimaki",
"license": "MIT",
"devDependencies": {
"@swc/core": "^1.6.13",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.2.5",
"react": "^18.0.2",
"tsup": "^8.1.1",
"typescript": "^5.5.3"
},
"peerDependencies": {
"react": "^18.0.2"
}
}