-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.5 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.5 KB
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
{
"name": "magicmove",
"version": "1.0.0",
"description": "React View Transitions Library - Apple Keynote-style Magic Move animations for the web",
"type": "module",
"main": "./dist/magicmove.cjs",
"module": "./dist/magicmove.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/magicmove.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/magicmove.cjs"
}
}
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"scripts": {
"dev": "vite build --watch",
"build": "tsc && vite build",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm run build",
"example:install": "npm run build && cd examples/nextjs && npm install",
"example:dev": "npm run build && cd examples/nextjs && npm run dev",
"example:build": "npm run build && cd examples/nextjs && npm run build",
"example:start": "cd examples/nextjs && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shakcho/MagicMove.git"
},
"homepage": "https://magicmove.saktichourasia.dev/",
"bugs": {
"url": "https://github.com/shakcho/MagicMove/issues"
},
"keywords": [
"react",
"animation",
"view-transitions",
"magic-move",
"transitions",
"layout-animation"
],
"author": "",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.16",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.4.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"semantic-release": "^25.0.2",
"typescript": "^5",
"vite": "^7.3.0",
"vite-plugin-dts": "^4.4.0"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}