-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.39 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
{
"name": "@nderscore/tamagui-typescript-plugin",
"version": "0.6.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nderscore/tamagui-typescript-plugin"
},
"main": "./dist",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"cleanbuild": "pnpm run clean && pnpm run build",
"changelog:major": "changelog -M --exclude 'chore,docs,ci'",
"changelog:minor": "changelog -m --exclude 'chore,docs,ci'",
"changelog:patch": "changelog -p --exclude 'chore,docs,ci'",
"changelog:commit": "prettier -w CHANGELOG.md && git add CHANGELOG.md && git commit -m 'docs: Update CHANGELOG.md'",
"release:major": "pnpm changelog:major && pnpm changelog:commit && pnpm version major",
"release:minor": "pnpm changelog:minor && pnpm changelog:commit && pnpm version minor",
"release:patch": "pnpm changelog:patch && pnpm changelog:commit && pnpm version patch"
},
"dependencies": {
"color": "4.2.3"
},
"peerDependencies": {
"@tamagui/core": "*",
"@tamagui/helpers": "*",
"typescript": ">=4.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
"@tamagui/core": "1.74.15",
"@tamagui/helpers": "1.74.15",
"@types/color": "3.0.4",
"@types/node": "20.6.0",
"generate-changelog": "1.8.0",
"prettier": "3.0.3",
"typescript": "5.2.2"
}
}