generated from stacksjs/stacks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "hello-world-elements",
"type": "module",
"version": "",
"packageManager": "[email protected]",
"description": "Your framework agnostic web component library description.",
"author": "Chris Breuer",
"license": "MIT",
"homepage": "https://github.com/stacksjs/stacks/tree/main/components#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/stacks.git",
"directory": "components"
},
"bugs": {
"url": "https://github.com/stacksjs/stacks/issues"
},
"keywords": ["custom-elements", "web-components", "library", "framework-agnostic", "typescript", "javascript"],
"contributors": ["Chris Breuer <[email protected]>"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "vite build -c ../build/web-components.ts",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"stacks": "workspace:*"
}
}