-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 802 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 802 Bytes
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
{
"name": "nativeweb",
"version": "2.1.0",
"description": "🤳 Tiny library for simple web components. [1kB]",
"homepage": "nativeweb.dev",
"repository": "nativew/nativeweb",
"author": "Antoine Boulanger (https://github.com/antoineboulanger)",
"license": "ISC",
"exports": "./index.js",
"main": "index.js",
"module": "index.js",
"type": "module",
"scripts": {
"format": "prettier --write --ignore-unknown '**/*'",
"start": "node build.config.js -w",
"build": "npm run format && node build.config.js"
},
"devDependencies": {
"@nativeweb/build": "^1.3.1",
"prettier": "^2.2.1"
},
"files": [
"index.js"
],
"keywords": [
"native web",
"web components",
"components",
"library",
"framework",
"decorators",
"js",
"javascript",
"starter",
"boilerplate"
]
}