-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.56 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "diff-view-element",
"version": "1.0.2",
"description": "A web component for displaying diffs in the browser",
"main": "./exports/index.js",
"module": "./exports/index.js",
"types": "./exports/index.d.ts",
"jsdelivr": "./bundles/all.js",
"exports": {
".": "./exports/index.js",
"./package.json": "./package.json",
"./exports/*.js": "./exports/*.js",
"./exports/*": "./exports/*",
"./types/*": "./types/*.d.ts",
"./cdn/exports/*.js": "./cdn/exports/*.js",
"./cdn/exports/*": "./cdn/exports/*",
"./bundles/*.js": "./bundles/*.js",
"./bundles/*": "./bundles/*"
},
"type": "module",
"files": [
"bundles",
"cdn",
"exports",
"internal",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"start:docs": "cd docs && bin/bridgetown start",
"setup": "pnpm install && cd docs && pnpm install && bundle install",
"build:api": "typedoc --out ./docs/output/references/api/ ./exports/**/*.js",
"build:api-json": "typedoc --json ./typedoc-generation.json ./exports/**/*.js",
"build:cdn": "node esbuild.config.js",
"build:cem": "custom-elements-manifest analyze",
"build:docs": "pnpm run build && cd docs && pnpm run build",
"build": "npm run clean && tsc && npm run build:cem && npm run build:cdn",
"clean": "rimraf -g \"./{exports,internal}/**/*.d.ts\" -g \"./cdn\"",
"create:component": "plop --plopfile scripts/plop/plopfile.js",
"watch:cem": "custom-elements-manifest analyze --watch",
"analyze": "custom-elements-manifest analyze --litelement",
"update-version": "node scripts/update-version.js",
"version": "npm run update-version && npm run build && git add internal/version.js",
"prepublish": "npm run update-version && npm run build",
"deploy:patch": "npm version patch && npm publish && git push --follow-tags",
"deploy:minor": "npm version minor && npm publish && git push --follow-tags",
"deploy:major": "npm version major && npm publish && git push --follow-tags",
"publish:beta": "npm publish --tag=beta && git push --follow-tags",
"lint": "prettier --check .",
"fix": "prettier --write .",
"verify": "npm run lint && npm run build && npm run test",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
},
"keywords": [
"web-components",
"syntax highlighting",
"diffs",
"diff"
],
"license": "MIT",
"repository": "git@github.com:KonnorRogers/diff-view-element.git",
"bugs": {
"url": "https://github.com/KonnorRogers/diff-view-element/issues"
},
"homepage": "https://github.com/KonnorRogers/diff-view-element",
"author": "KonnorRogers <konnor5456@gmail.com>",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.10.2",
"@esm-bundle/chai": "4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-helpers": "^3.0.1",
"@types/diff": "^5.2.1",
"@types/node": "^20.14.8",
"@web/test-runner": "^0.18.2",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"cem-plugin-expanded-types": "^1.3.1",
"diff-view-element": "link:.",
"esbuild": "^0.23.0",
"gh-pages": "^6.1.1",
"glob": "^10.4.1",
"globby": "^14.0.2",
"playwright": "^1.44.1",
"plop": "^4.0.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.7",
"typedoc": "^0.26.1",
"typescript": "~5.5.2"
},
"dependencies": {
"diff": "^5.2.0",
"lit": "^3.1.4",
"prism-esm": "1.29.0-fix.4",
"web-component-define": "^2.0.11"
},
"customElements": "custom-elements.json"
}