-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
package.json
File metadata and controls
48 lines (48 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
{
"name": "hotwire-native-dev-tools",
"version": "0.3.1",
"description": "Dev Tools for Hotwire Native",
"main": "./dist/hotwire-native-dev-tools.es.js",
"module": "./dist/hotwire-native-dev-tools.es.js",
"types": "./dist/hotwire-native-dev-tools.d.ts",
"exports": {
".": {
"types": "./dist/hotwire-native-dev-tools.d.ts",
"import": "./dist/hotwire-native-dev-tools.es.js",
"require": "./dist/hotwire-native-dev-tools.es.js"
}
},
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "vite build && cp src/index.d.ts dist/hotwire-native-dev-tools.d.ts",
"dev": "vite build --watch",
"cy:open": "cypress open",
"cy:run": "cypress run",
"start:test": "vite --port 8080 --strictPort",
"test:e2e": "npm run build && (npm run start:test & sleep 3 && npm run cy:run; RETVAL=$?; kill $(lsof -t -i:8080) || true; exit $RETVAL)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonvogt/hotwire-native-dev-tools.git"
},
"keywords": [
"Hotwire",
"Native"
],
"author": "Leon Vogt",
"license": "MIT",
"bugs": {
"url": "https://github.com/leonvogt/hotwire-native-dev-tools/issues"
},
"homepage": "https://github.com/leonvogt/hotwire-native-dev-tools#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"cypress": "^15.0.0",
"vite": "^7.1.3"
}
}