-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 952 Bytes
/
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
{
"name": "@cirolee/tiny-motion",
"description": "The high-performance extension of Web Animation API for React Hooks",
"browser": "packages/lib/dist/index.js",
"types": "packages/lib/dist/index.d.ts",
"type": "module",
"scripts": {
"dev:app": "pnpm --filter app run dev",
"dev:lib": "pnpm --filter @cirolee/tiny-motion run dev",
"build:app": "pnpm --filter app run build",
"build:lib": "pnpm --filter @cirolee/tiny-motion run build",
"prepare": "husky"
},
"workspaces": [
"packages/*"
],
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"commitlint": "^19.3.0",
"eslint": "8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.3.2",
"typescript": "^5"
}
}