-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 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
42
43
44
45
46
47
{
"name": "stellar-element",
"description": "A stellar way to build custom elements.",
"version": "0.4.0",
"author": "Hawk Ticehurst",
"license": "MIT",
"type": "module",
"main": "build/index.js",
"types": "build/index.d.ts",
"homepage": "https://github.com/hawkticehurst/stellar#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hawkticehurst/stellar.git"
},
"bugs": {
"url": "https://github.com/hawkticehurst/stellar/issues"
},
"scripts": {
"build": "tsc -p ./tsconfig.json",
"fmt": "prettier --write \"**/*.{ts,js,md,html,css,json}\"",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "consistent",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always"
},
"keywords": [
"custom elements",
"web components",
"astro",
"ui",
"components"
]
}