generated from developer-plus/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
82 lines (82 loc) · 1.9 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
{
"name": "amcss-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "",
"keywords": [],
"homepage": "https://github.com/developer-plus/amcss#readme",
"bugs": {
"url": "https://github.com/developer-plus/amcss/issues"
},
"license": "MIT",
"author": "developer-plus",
"repository": {
"type": "git",
"url": "git+https://github.com/developer-plus/amcss.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"stub": "pnpm -r stub",
"build": "pnpm -r build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp --commit --push --tag && npm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@amcss/runtime": "workspace:*",
"@amcss/transformer": "workspace:*",
"@amcss/types": "workspace:*",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@developer-plus/eslint-config": "^0.1.0",
"@types/node": "^17.0.33",
"bumpp": "^7.1.1",
"eslint": "^8.15.0",
"esno": "^0.15.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"pnpm": "^7.1.0",
"typescript": "^4.6.4",
"unbuild": "^0.7.4",
"unplugin-auto-import": "^0.7.1",
"vitest": "^0.12.6"
},
"lint-staged": {
"*.{js,ts,json,md}": [
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}