-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
{
"name": "@netflix/x-element",
"description": "A dead simple basis for custom elements.",
"version": "2.0.2",
"license": "Apache-2.0",
"repository": "github:Netflix/x-element",
"type": "module",
"exports": {
".": {
"types": "./types/x-element.d.ts",
"default": "./x-element.js"
},
"./x-element.js": {
"types": "./types/x-element.d.ts",
"default": "./x-element.js"
},
"./x-template.js": {
"types": "./types/x-template.d.ts",
"default": "./x-template.js"
},
"./x-parser.js": {
"types": "./types/x-parser.d.ts",
"default": "./x-parser.js"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"start": "node ./server.js",
"lint": "eslint --max-warnings=0 .",
"lint-fix": "eslint --fix .",
"build-react": "npm run build-react-demo && npm run build-react-performance",
"build-react-demo": "esbuild demo/react/index.jsx --bundle --format=esm --jsx=automatic --packages=external --external:../* --outfile=demo/react/index.js",
"build-react-performance": "esbuild performance/react/index.jsx --bundle --format=esm --jsx=automatic --packages=external --external:../* --outfile=performance/react/index.js",
"test": "x-test --client=puppeteer --url=http://127.0.0.1:8080/test/ --coverage=true",
"type": "tsc",
"performance": "node ./performance.js",
"bump": "./bump.sh"
},
"files": [
"/x-element.js",
"/x-parser.js",
"/x-template.js",
"/demo",
"/test",
"/types"
],
"devDependencies": {
"@netflix/eslint-config": "3.0.0",
"@netflix/x-test": "2.0.0-rc.6",
"@netflix/x-test-cli": "1.0.0-rc.2",
"esbuild": "0.27.4",
"eslint": "10.1.0",
"eslint-plugin-jsdoc": "62.8.0",
"globals": "17.4.0",
"puppeteer": "24.40.0",
"typescript": "6.0.2"
},
"engines": {
"node": ">=22.14",
"npm": ">=10.9"
},
"contributors": [
{
"name": "Andrew Seier",
"email": "aseier@netflix.com"
},
{
"name": "Casey Klebba",
"email": "cklebba@netflix.com"
}
]
}