-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "css-to-vanilla-extract-workspace",
"version": "0.0.48-alpha",
"description": "Generate vanilla-extract typescript file from the CSS (SCSS/SASS) file.",
"scripts": {
"build:wasm": "wireit",
"build:node": "wireit",
"dev:playground": "wireit",
"build:playground": "wireit",
"publish:node": "wireit",
"test": "wireit",
"lint": "eslint . --ext '.js,.jsx,.ts,.tsx' --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ext '.js,.jsx,.ts,.tsx' --ignore-path .gitignore",
"prettier": "prettier . --write --ignore-path .gitignore"
},
"wireit": {
"build:wasm": {
"command": "npm run build --workspace=packages/wasm",
"output": [
"./packages/wasm/dist"
],
"dependencies": [
"test"
]
},
"build:playground": {
"command": "npm run build --workspace=packages/playground",
"dependencies": [
"build:wasm"
]
},
"dev:playground": {
"command": "npm run dev --workspace=packages/playground",
"dependencies": [
"build:wasm"
]
},
"test": {
"command": "npm run test --workspaces --if-present"
},
"build:node": {
"command": "npm run build-release --workspace=packages/node",
"output": [
"./packages/node/dist"
],
"dependencies": [
"test"
]
},
"publish:node": {
"command": "npm publish --workspace=packages/node",
"dependencies": [
"build:node"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/activeguild/css-to-vanilla-extract.git"
},
"workspaces": [
"packages/*"
],
"author": "j1ngzoue",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeguild/css-to-vanilla-extract/issues"
},
"homepage": "https://github.com/activeguild/css-to-vanilla-extract#readme",
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.6",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"wireit": "^0.9.5"
}
}