-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
106 lines (106 loc) · 2.83 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
100
101
102
103
104
105
106
{
"name": "transform-to-unocss",
"version": "0.0.88",
"packageManager": "[email protected]",
"description": "The tool that transform css to unocss",
"author": "Simon He",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/transformToUnocss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Simon-He95/transformToUnocss.git"
},
"bugs": "https://github.com/Simon-He95/transformToUnocss/issues",
"keywords": [
"transform-to-unocss",
"unocss"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"tounocss": "./cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts ./src/cli.ts",
"dev": "npm run build -- --watch src",
"format": "prettier --write --cache .",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"play": "pnpm run -C playground dev",
"play:build": "pnpm run -C playground build",
"preview": "pnpm run -C playground preview",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.25.1",
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.25.2",
"@rollup/pluginutils": "^5.1.0",
"@simon_he/colorize": "^0.0.1",
"@types/babel__core": "^7.20.5",
"@types/less": "^3.0.6",
"@types/node": "^18.19.44",
"@types/stylus": "^0.48.42",
"@unocss/preset-uno": "^0.50.8",
"@vue/babel-plugin-jsx": "^1.2.2",
"bumpp": "^8.2.1",
"eslint": "^8.57.0",
"esno": "^0.16.3",
"find-up": "^6.3.0",
"less": "^4.2.0",
"less-plugin-module-resolver": "^1.0.3",
"lint-staged": "^13.3.0",
"magic-string": "^0.30.11",
"monaco-editor": "^0.36.1",
"picocolors": "^1.0.1",
"pnpm": "^8.15.9",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"sass": "^1.77.8",
"simple-git-hooks": "^2.11.1",
"stylus": "^0.59.0",
"transform-to-unocss": "workspace:^",
"transform-to-unocss-core": "^0.0.31",
"tsup": "^6.7.0",
"tsx": "^3.14.0",
"typescript": "^4.9.5",
"unplugin": "^1.12.1",
"vitest": "^1.6.0"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint --fix"
}
}