-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "root",
"private": true,
"type": "module",
"version": "1.0.0",
"description": "Monorepo for lit-css build plugins",
"author": "Benny Powers <[email protected]>",
"license": "MIT",
"engines": {
"node": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bennypowers/lit-css.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:typescript": "npm run build -ws --if-present",
"build:runtime": "node build.js",
"build:types": "tsc",
"lint": "eslint .",
"test": "npm run build && tape 'packages/*/test/*.test.js' | tap-spec",
"release": "npm run build && npm run test && npx changeset publish",
"clean": "rimraf 'packages/*/*.{cjs,js,d.ts,js.map,cjs.map}'"
},
"workspaces": [
"packages/*",
"test"
],
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@changesets/cli": "^2.27.1",
"@microsoft/fast-element": "^1.12.0",
"@pwrs/eslint-config": "^0.0.26",
"@rollup/plugin-alias": "^5.1.0",
"@types/node": "^20.12.5",
"@web/dev-server-core": "^0.7.1",
"arraybuffer-to-string": "^1.0.2",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.23.0",
"esbuild-plugin-alias": "^0.2.1",
"esm": "^3.2.25",
"execa": "^8.0.1",
"globby": "^14.0.1",
"lit": "^3.1.2",
"memfs": "^4.8.1",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-nesting": "^12.1.1",
"rollup": "^4.14.0",
"rollup-plugin-alias": "^2.2.0",
"sass": "^1.74.1",
"tap-spec": "^5.0.0",
"tap-summary": "^4.0.0",
"tape": "^5.7.5",
"ts-patch": "^3.1.2",
"typescript": "^5.4.4",
"webpack": "^5.91.0",
"wsrun": "^5.2.4"
}
}