-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.41 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "@pixore/window",
"version": "0.2.7",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist && rm -rf .cache",
"prebuild": "yarn clean",
"build": "tsup",
"start": "parcel examples/index.html",
"test:types": "tsc --noEmit",
"test:duplication": "jscpd .",
"test:cy": "start-server-and-test start http://localhost:1234 cy:run",
"test": "run-s test:types test:duplication test:cy",
"cy:run": "cypress run",
"cy:open": "cypress open",
"prepack": "yarn build",
"release": "standard-version && git push --follow-tags origin HEAD"
},
"peerDependencies": {
"react": "^17 || 18",
"react-dom": "^17 || 18"
},
"license": "MIT",
"dependencies": {
"@reach/portal": "^0.17.0"
},
"devDependencies": {
"@pixore/prettier-config": "0.0.2",
"@types/once": "~1.4.0",
"@types/react": "^18.0.8",
"@types/react-dom": "^18.0.0",
"cypress": "~9.6.0",
"jscpd": "^3.3.26",
"npm-run-all": "^4.1.5",
"parcel": "^2.0.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"standard-version": "^9.3.2",
"start-server-and-test": "^1.14.0",
"tsup": "^5.12.6",
"typescript": "4.6.3"
}
}