-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"version": "0.2.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"private": false,
"repository": "https://github.com/gamebox/snazzy-elements",
"description": "A lightweight wrapper of @snazzyui/snazzyui to create tiny custom web components.",
"files": [
"dist",
"src"
],
"keywords": [
"web components",
"custom elements",
"ui library",
"vdom",
"hyperapp",
"functional",
"lightweight"
],
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc && node ./scripts/build.mjs",
"prepare": "tsc && node ./scripts/build.mjs",
"examples": "rm -rf examples/scripts && cp -r dist examples/scripts && npx http-server examples 8088"
},
"peerDependencies": {},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@snazzyui/element",
"author": "Anthony Bullard",
"module": "dist/snazzy-element.esm.js",
"devDependencies": {
"esbuild": "^0.14.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@snazzyui/snazzyui": "0.2.0"
}
}