-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "tinky-theme",
"version": "1.0.1",
"description": "The flexible, type-safe, and slot-based theming engine for Tinky",
"keywords": [
"react",
"tinky",
"cli",
"terminal",
"theming",
"design-system",
"style-system"
],
"homepage": "https://github.com/ByteLandTechnology/tinky-theme#readme",
"bugs": {
"url": "https://github.com/ByteLandTechnology/tinky-theme/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ByteLandTechnology/tinky-theme.git"
},
"license": "MIT",
"author": {
"name": "ByteLand Technology Limited"
},
"type": "module",
"main": "./lib/index.js",
"scripts": {
"test": "bun test",
"build": "tsc && npm run docs",
"lint": "eslint src tests",
"prepublish": "npm run build",
"prepare": "husky",
"docs": "typedoc --plugin typedoc-plugin-markdown --disableSources --out docs/api && prettier --write docs/api"
},
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"dependencies": {
"@types/lodash": "^4.17.23",
"lodash": "^4.17.23",
"tinky": ">=1.4.3"
},
"devDependencies": {
"@commitlint/cli": "^20.3.0",
"@commitlint/config-conventional": "^20.3.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/bun": "^1.3.8",
"bun": "^1.3.8",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tinky-test": "^1.0.0",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typescript-eslint": "^8.54.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json,md,yaml,yml}": "prettier --write"
}
}