-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "__LIB_NAME__",
"version": "__VERSION__",
"description": "__DESCRIPTION__",
"type": "module",
"main": "__MAIN_FILE__.js",
"exports": {
".": "./__MAIN_FILE__.js"
},
"files": [
"__MAIN_FILE__.js",
"README.md",
"LICENSE"
],
"scripts": {
"build": "echo 'No build step required'",
"test": "echo 'No tests specified'",
"dev": "bash -c 'for s in vanilla react vue angular docs; do npm run dev:$s & done; wait'",
"dev:vanilla": "cd examples/vite-vanilla && npm run dev",
"dev:react": "cd examples/vite-react && npm run dev",
"dev:vue": "cd examples/vite-vue && npm run dev",
"dev:angular": "cd examples/vite-angular && npm run dev",
"dev:docs": "cd docs && npm run dev"
},
"keywords": [
"web-component",
"vanilla-js",
"framework-agnostic"
],
"author": "__AUTHOR__",
"license": "__LICENSE__",
"repository": {
"type": "git",
"url": "https://github.com/__AUTHOR__/__LIB_NAME__.git"
},
"bugs": {
"url": "https://github.com/__AUTHOR__/__LIB_NAME__/issues"
},
"homepage": "https://github.com/__AUTHOR__/__LIB_NAME__#readme"
}