-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
{
"name": "preact-transitioning",
"version": "1.5.2",
"description": "Preact components for easily implementing basic CSS animations and transitions",
"source": "src/index.ts",
"main": "lib/preact-transitioning.js",
"module": "lib/preact-transitioning.module.js",
"exports": {
"types": "./lib/types/index.d.ts",
"require": "./lib/preact-transitioning.js",
"default": "./lib/preact-transitioning.modern.mjs"
},
"unpkg": "./lib/preact-transitioning.umd.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib"
],
"scripts": {
"dev": "webpack serve --progress --config webpack.config.development.js",
"docs": "yarn run build && webpack --progress --config webpack.config.docs.js",
"lint": "eslint src && eslint examples",
"clean": "rimraf lib",
"watch": "microbundle watch --no-sourcemap",
"compile": "microbundle --no-sourcemap",
"build": "yarn run clean && yarn run compile",
"prepublishOnly": "yarn run lint && yarn run build"
},
"keywords": [
"preact",
"transition",
"animation",
"react-transition-group",
"preact-transition-group"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/fakundo/preact-transitioning"
},
"author": "Roman Samoylov (https://github.com/fakundo)",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.6.0",
"microbundle": "^0.15.1",
"preact": "^10.20.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-loader": "^9.5.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"peerDependencies": {
"preact": ">=10.0.0"
},
"dependencies": {},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}