-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.58 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.58 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nude-element",
"version": "0.1.3",
"description": "Composable web component helpers",
"main": "index.js",
"files": [
"src/",
"!src/util/unused/",
"index.js",
"README.md"
],
"type": "module",
"scripts": {
"eslint": "npx eslint .",
"eslint:fix": "npx eslint . --fix",
"build:apidocs": "npx typedoc",
"watch:apidocs": "npx typedoc --watch --preserveWatchOutput",
"build": "npm run build:apidocs",
"watch": "npm run watch:apidocs",
"test": "npx htest test/index.js",
"release": "npm login && npx release-it"
},
"exports": {
".": "./src/index.js",
"./fn": "./src/index-fn.js",
"./plugins": "./src/plugins/index.js",
"./plugins/fn": "./src/plugins/index-fn.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nudeui/element.git"
},
"keywords": [
"Web Components"
],
"author": "Lea Verou",
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/LeaVerou"
},
{
"type": "opencollective",
"url": "https://opencollective.com/leaverou"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nudeui/element/issues"
},
"homepage": "https://github.com/nudeui/element#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.6.1",
"eslint": "^9.39.2",
"globals": "^16.5.0",
"htest.dev": "^0.0.24",
"prettier-plugin-brace-style": "^0.10.1",
"prettier-plugin-merge": "^0.10.1",
"prettier-plugin-space-before-function-paren": "^0.1.0",
"release-it": "^20.0.1",
"typedoc": "^0.28.18",
"typedoc-plugin-rename-defaults": "^0.7.3"
},
"dependencies": {
"xtensible": "^0.0.2"
}
}