-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "unglitch",
"version": "2.5.1",
"description": "Yes. React 18+ only and not planning to port to anything else. Get your sh*t up-to-date.",
"main": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc",
"build-cjs": "tsc --project tsconfig.commonjs.json",
"postbuild": "npx uglify-js dist/esm/index.js -m -c -o dist/esm/index.min.mjs",
"postbuild-cjs": "npx uglify-js dist/cjs/index.js -m -c -o dist/cjs/index.min.cjs",
"prepublish": "npm run build && npm run build-cjs",
"demo": "npx parcel demo/index.html"
},
"exports": {
".": {
"require": "./dist/cjs/index.min.cjs",
"import": "./dist/esm/index.min.mjs",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/activenode/glitch.git"
},
"keywords": [],
"author": "David Lorenz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/activenode/unglitch/issues"
},
"homepage": "https://github.com/activenode/unglitch#readme",
"peerDependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.17",
"autoprefixer": "^10.4.14",
"parcel": "^2.7.0",
"postcss": "^8.4.24",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.8.2",
"uglify-js": "^3.17.0"
},
"dependencies": {
"fast-equals": "^5.0.1"
}
}