-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.5 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "form-associated-helpers",
"version": "0.0.11",
"description": "A collection of reusable mixins + helpers for working with form associated custom elements.",
"exports": {
"./package.json": "./package.json",
"./exports/*.js": "./exports/*.js",
"./exports/*": "./exports/*",
"./types/*": "./types/*.d.ts"
},
"type": "module",
"files": [
"exports",
"internal",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"start:docs": "cd docs && bin/bridgetown start",
"setup": "pnpm install && cd docs && pnpm install && bundle install",
"build:docs": "cd docs && pnpm run build && cd - && pnpm run build:api",
"build:api": "typedoc --out ./docs/output/references/api/ ./exports/**/*.js",
"build": "npm run clean && tsc && npm run build:cem",
"watch:cem": "custom-elements-manifest analyze --litelement --watch",
"build:cem": "custom-elements-manifest analyze --litelement",
"clean": "rimraf -g \"./{examples,exports,internal}/**/!(*-globals|*-types).d.ts\"",
"start": "tsc --watch",
"deploy:patch": "npm run build && npm version patch && npm publish && git push --follow-tags",
"deploy:minor": "npm run build && npm version minor && npm publish && git push --follow-tags",
"deploy:major": "npm run build && npm version major && npm publish && git push --follow-tags",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"keywords": [
"web-components",
"custom-elements",
"face",
"form-associated",
"form-associated-custom-elements"
],
"license": "MIT",
"repository": "[email protected]:KonnorRogers/form-associated-helpers.git",
"bugs": {
"url": "https://github.com/KonnorRogers/form-associated-helpers/issues"
},
"homepage": "https://github.com/KonnorRogers/form-associated-helpers",
"author": "KonnorRogers <[email protected]>",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.0",
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/testing-helpers": "^3.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"es-module-shims": "^1.8.2",
"form-associated-helpers": "link:.",
"gh-pages": "^6.1.1",
"lit": "> 2",
"playwright": "^1.40.1",
"rimraf": "^5.0.5",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"customElements": "custom-elements.json"
}