-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "typescript-transform-lit-css",
"description": "import CSS files as tagged template literals",
"version": "2.0.1",
"type": "module",
"main": "typescript-transform-lit-css.js",
"types": "typescript-transform-lit-css.d.ts",
"exports": {
"import": "./typescript-transform-lit-css.js",
"require": "./typescript-transform-lit-css.cjs"
},
"author": "Benny Powers <[email protected]>",
"license": "ISC",
"scripts": {
"build": "run-s build:*",
"build:esm": "tsc",
"build:cjs": "esbuild --format=cjs typescript-transform-lit-css.js --outfile=typescript-transform-lit-css.cjs"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bennypowers/lit-css.git",
"directory": "packages/typescript-transform-lit-css"
},
"bugs": {
"url": "https://github.com/bennypowers/lit-css/issues"
},
"keywords": [
"typescript",
"transform",
"lit",
"css",
"webcomponents"
],
"files": [
"typescript-transform-lit-css.cjs",
"typescript-transform-lit-css.js",
"typescript-transform-lit-css.d.ts"
],
"dependencies": {
"@pwrs/lit-css": "^3.0.1"
},
"peerDependencies": {
"clean-css": "^5",
"postcss": "^8",
"postcss-nesting": "^12",
"typescript": "^5",
"ts-patch": "^3.0",
"lit": "^2.7.2 || ^3.0.0"
}
}