-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.44 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.44 KB
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
{
"name": "kstyled",
"version": "0.0.0",
"private": true,
"description": "Zero-runtime styled-components for React Native - Build-time style extraction with StyleSheet performance",
"keywords": [
"react-native",
"styled-components",
"stylesheet",
"performance",
"zero-runtime",
"babel-plugin"
],
"repository": {
"type": "git",
"url": "https://github.com/hyodotdev/kstyled.git"
},
"license": "MIT",
"author": "hyodotdev (https://hyo.dev)",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --filter=example",
"typecheck": "turbo run typecheck",
"lint": "turbo run lint",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules .turbo",
"bun:install": "bun install",
"kstyled:copy": "cd packages/babel-plugin-kstyled && pnpm build && cp -r dist/* /Users/hyo/Github/crossplatformkorea/cpk-ui/node_modules/babel-plugin-kstyled/dist/ && cd ../kstyled && pnpm build && cp -r dist/* /Users/hyo/Github/crossplatformkorea/cpk-ui/node_modules/kstyled/dist/ && echo '✅ kstyled packages copied to cpk-ui! Restart Metro/Storybook to apply changes.'",
"kstyled:copy2": "cd packages/babel-plugin-kstyled && pnpm build && cp -r dist/* /Users/hyo/Github/hyodotdev/Petgu/node_modules/babel-plugin-kstyled/dist/ && cd ../kstyled && pnpm build && cp -r dist/* /Users/hyo/Github/hyodotdev/Petgu/node_modules/kstyled/dist/ && echo '✅ kstyled packages copied to Petgu! Restart Metro/Storybook to apply changes.'",
"bun:build": "bun run build",
"bun:dev": "bun run dev",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepublish": "pnpm build && pnpm typecheck && pnpm test",
"publish:packages": "pnpm publish -r --filter '!example' --filter '!kstyled-docs' --access public",
"publish:dry": "pnpm publish -r --filter '!example' --filter '!kstyled-docs' --access public --dry-run",
"version:patch": "node scripts/bump-version.js patch",
"version:minor": "node scripts/bump-version.js minor",
"version:major": "node scripts/bump-version.js major",
"version:get": "node -p \"require('./packages/kstyled/package.json').version\""
},
"devDependencies": {
"@turbo/gen": "^2.3.3",
"@types/jest": "^29.5.14",
"prettier": "^3.4.2",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.4"
}