-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "@hookform/core",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"version": "0.0.2",
"types": "dist/index.d.ts",
"scripts": {
"build": "bunchee ./src/index.ts",
"prettier": "prettier --config .prettierrc --write \"**/*.{ts,tsx}\"",
"type": "tsc --noEmit",
"test": "jest --config ./jest.config.js",
"test:coverage": "pnpm test -- --coverage",
"test:watch": "pnpm test -- --onlyChanged --watch",
"test:type": "tsd src/__typetest__",
"lint": "eslint '**/*.{js,ts,tsx}'",
"lint:fix": "pnpm lint --fix",
"api-extractor:build": "pnpm build && pnpm api-extractor run --local",
"api-extractor:ci": "node apiExtractor.js",
"prepublishOnly": "pnpm install && pnpm lint:fix && pnpm type && pnpm test && pnpm build"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
"@swc/jest": "^0.2.24",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"bunchee": "^2.2.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"prettier": "^2.8.4",
"tsd": "^0.25.0",
"typescript": "^4.9.5"
},
"license": "MIT"
}