-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "@esheet/renderer",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/mieweb/eSheet"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"@esheet/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"sideEffects": [
"**/*.css"
],
"scripts": {
"build:css": "cd ../.. && npx @tailwindcss/cli -i packages/renderer/src/index.css -o packages/renderer/src/index.output.css",
"build:css:watch": "cd ../.. && npx @tailwindcss/cli -i packages/renderer/src/index.css -o packages/renderer/src/index.output.css --watch"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
],
"nx": {
"tags": [
"scope:renderer"
]
},
"dependencies": {
"@esheet/adapters": "0.0.2",
"@esheet/core": "0.0.2-0",
"@esheet/fields": "0.0.2-0",
"js-yaml": "^4.1.0"
},
"peerDependencies": {
"react": ">=19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.1",
"tailwindcss": "^4.2.1"
}
}