-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.41 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@twind/cli",
"version": "0.2.1",
"description": "Twind CLI",
"// mark as private to prevent accidental publish - use 'yarn release'": "",
"private": true,
"keywords": [
"twind",
"extension",
"twind-extension",
"plugin",
"twind-plugin",
"tailwind",
"tw-in-js",
"tailwind-in-js"
],
"bugs": "https://github.com/tw-in-js/twind-cli/issues",
"repository": "github:tw-in-js/twind-cli",
"license": "MIT",
"contributors": [
"Sascha Tandel (https://github.com/sastan)"
],
"engines": {
"node": ">=10.13"
},
"files": [
"bin"
],
"bin": {
"twind": "bin/twind.js"
},
"browser": false,
"sideEffects": false,
"// The 'module', 'unpkg' and 'types' fields are added by distilt": "",
"main": "./src/index.ts",
"// Each entry is expanded into several bundles (module, script, types, require, node, and default)": "",
"exports": {
".": "./src/index.ts",
"./package.json": "./package.json"
},
"dependencies": {
"chokidar": "^3.5.1",
"esbuild": "^0.9.6",
"find-up": "^5.0.0",
"ignore": "^5.1.8",
"kleur": "^4.1.4",
"locate-path": "^6.0.0",
"p-debounce": "^2.1.0",
"p-event": "^4.2.0",
"sade": "^1.7.4",
"sucrase": "^3.17.1",
"supports-color": "^8.1.1",
"time-span": "^4.0.0",
"twind": "^0.16.9",
"v8-compile-cache": "^2.2.0"
},
"peerDependencies": {
"typescript": "^4.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@types/clean-css": "^4.2.3",
"@types/node": "^14.14.31",
"@types/sade": "^1.7.2",
"@types/supports-color": "^7.2.0",
"c8": "^7.3.5",
"distilt": "^0.10.4",
"esbuild-register": "^2.3.0",
"esm": "^3.2.25",
"prettier": "^2.0.5",
"typescript": "^4.1.3",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
},
"scripts": {
"build": "distilt",
"format": "prettier --write --ignore-path .gitignore .",
"release": "npx np --contents dist",
"ts": "node -r esbuild-register -r esm",
"test": "uvu -r esm -r esbuild-register . test.ts",
"test:coverage": "c8 --src index.ts --all -r lcov -r text yarn test",
"test:watch": "watchlist . -- yarn test",
"version": "yarn build"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"publishConfig": {
"access": "public"
}
}