-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "@webstd-ui/view",
"version": "0.1.0",
"description": "Define the visual elements of your web app using a hierarchy of views",
"author": "mark@malstrom.me",
"license": "MIT",
"type": "module",
"module": "dist/webstd-ui-view.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/webstd-ui-view.js"
}
},
"sideEffects": false,
"homepage": "https://github.com/webstd-ui/view#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webstd-ui/view.git"
},
"files": [
"dist/**"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc -b",
"clean": "git clean -fX .",
"prepublishOnly": "rm -rf dist && npm run build"
},
"resolutions": {
"@webstd-ui/observable": "file:../observable"
},
"dependencies": {
"@webstd-ui/observable": "file:../observable",
"lit-html": "^2.8.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"tslib": "^2.6.2",
"typescript": "^5.2.1-rc",
"vite": "^4.4.9"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"singleQuote": false,
"semi": false,
"arrowParens": "avoid"
}
}