-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "jails-js",
"version": "6.0.4",
"description": "Jails - Elegant and Minimalistic Javascript Application Library",
"types": "types.d.ts",
"module": "./dist/index.js",
"main": "./dist/jails.js",
"exports": {
"./html": "./html.mjs",
".": {
"types": "./types.d.ts",
"import": "./dist/index.js",
"require": "./dist/jails.js"
}
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"preview": "vite preview",
"publish-beta": "yarn build && npm version prerelease --preid=beta && npm publish --tag beta",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jails-org/Jails.git"
},
"keywords": [
"Jails",
"Javascript",
"Component",
"Micro-Library"
],
"author": "javiani",
"license": "MIT",
"bugs": {
"url": "https://github.com/jails-org/Jails/issues"
},
"homepage": "https://github.com/jails-org/Jails",
"devDependencies": {
"@types/node": "^22.10.10",
"terser": "^5.37.0",
"typescript": "^5.7.3",
"vite": "^6.0.11"
},
"dependencies": {
"idiomorph": "^0.7.2"
}
}