forked from matthewp/custom-attributes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
48
{
"name": "@lume/custom-attributes",
"version": "0.2.4",
"description": "Custom attributes: like custom elements, but for attributes",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"LUME SCRIPTS XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX": "",
"clean": "lume clean",
"build": "lume build",
"dev": "lume dev",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch",
"test": "lume test",
"test:watch": "lume test --watch",
"prettier": "lume prettier",
"prettier:check": "lume prettierCheck",
"release:patch": "lume releasePatch",
"release:minor": "lume releaseMinor",
"release:major": "lume releaseMajor",
"version": "lume versionHook",
"postversion": "lume postVersionHook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthewp/custom-attributes.git"
},
"keywords": [
"web",
"components"
],
"author": "Matthew Phillips",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/matthewp/custom-attributes/issues"
},
"homepage": "https://github.com/matthewp/custom-attributes#readme",
"devDependencies": {
"@lume/cli": "^0.14.0",
"prettier": "3.0.3",
"rollup": "^0.41.4",
"typescript": "^5.0.0"
},
"dependencies": {
"lowclass": "^8.0.0"
}
}