-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.45 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.45 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
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
103
104
105
106
107
108
109
110
111
{
"name": "wc-compiler",
"version": "0.21.1",
"description": "WCC supports server-rendering of standard Web Components, generating HTML directly from your custom element definitions.",
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectEvergreen/wcc.git"
},
"type": "module",
"main": "src/wcc.js",
"types": "./src/index.d.ts",
"exports": {
".": {
"types": "./src/index.d.ts",
"import": "./src/wcc.js"
},
"./register": "./src/register.js",
"./dom-shim": "./src/dom-shim.js",
"./jsx-loader": "./src/jsx-loader.js",
"./jsx-runtime": "./src/jsx-runtime.ts",
"./effect": "./src/effect.js"
},
"author": "Owen Buckley <owen@thegreenhouse.io>",
"keywords": [
"Web Components",
"SSR",
"JSX",
"Greenwood"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"src/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"docs:dev": "greenwood develop",
"docs:build": "NODE_OPTIONS='--import @greenwood/cli/register' greenwood build",
"docs:serve": "greenwood serve",
"lint": "npm run lint:js && npm run lint:ls && npm run lint:css",
"lint:js": "eslint",
"lint:ls": "ls-lint",
"lint:css": "stylelint \"./docs/**/*.css\"",
"check:types": "tsc",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "mocha --exclude \"./test/cases/jsx*/**\" --exclude \"./test/cases/ts*/**\" --exclude \"./test/cases/custom-extension/**\" \"./test/**/**/*.spec.js\"",
"test:jsx": "c8 node --import ./test-register.js --experimental-strip-types ./node_modules/mocha/bin/mocha \"./test/**/**/*.spec.js\"",
"test:tdd": "npm run test -- --watch",
"test:tdd:jsx": "npm run test:jsx -- --watch",
"test:docs": "vitest run --coverage",
"test:docs:tdd": "vitest",
"prepare": "husky"
},
"dependencies": {
"@projectevergreen/acorn-jsx-esm": "~0.1.0",
"acorn": "^8.14.0",
"acorn-walk": "^8.3.4",
"astring": "^1.9.0",
"parse5": "^7.2.1",
"signal-polyfill": "^0.2.2",
"sucrase": "^3.35.0"
},
"devDependencies": {
"@double-great/stylelint-a11y": "^3.0.2",
"@eslint/js": "^9.39.1",
"@greenwood/cli": "^0.34.0-alpha.4",
"@greenwood/plugin-css-modules": "^0.34.0-alpha.4",
"@greenwood/plugin-import-jsx": "^0.34.0-alpha.4",
"@greenwood/plugin-import-raw": "^0.34.0-alpha.4",
"@greenwood/plugin-markdown": "^0.34.0-alpha.4",
"@ls-lint/ls-lint": "^2.3.1",
"@mapbox/rehype-prism": "^0.8.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.4",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"c8": "^7.11.2",
"chai": "^4.3.6",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.3.0",
"geist": "^1.2.0",
"globals": "^15.10.0",
"husky": "^9.1.7",
"jsdom": "^19.0.0",
"lint-staged": "^16.2.6",
"mocha": "^9.2.2",
"open-props": "^1.7.4",
"patch-package": "^8.0.1",
"playwright": "^1.58.2",
"prettier": "^3.6.2",
"prism-themes": "^1.9.0",
"prismjs": "^1.28.0",
"rehype-autolink-headings": "^4.0.0",
"rehype-external-links": "^3.0.0",
"rehype-slug": "^3.0.0",
"remark-gfm": "^4.0.0",
"remark-github": "^10.0.1",
"stylelint": "^17.4.0",
"stylelint-config-recommended": "^18.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}