generated from hemengke1997/ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.51 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
{
"name": "@minko-fe/style-object-to-string",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "✨ convert style object to string. eg. { fontSize: 12 } => font-size: 12px",
"type": "module",
"keywords": [
"style to string",
"object style to string",
"style object to string",
"css to string",
"css object to to string",
"object css to string"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hemengke1997/style-object-to-string.git"
},
"author": "hemengke <https://github.com/hemengke1997>",
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"test": "vitest",
"lint": "eslint . --fix",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"bump": "bumpp package.json -c --no-push -t --all -x \"npm run changelog\""
},
"dependencies": {
"csstype": "^3.1.3"
},
"devDependencies": {
"@minko-fe/commitlint-config": "^2.1.2",
"@minko-fe/eslint-config": "^4.1.1",
"@minko-fe/prettier-config": "^2.2.3",
"@minko-fe/tsconfig": "^2.1.1",
"bumpp": "^9.8.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.15.0",
"tsup": "8.3.0",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
}
}