-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 Bytes
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
{
"name": "@mixery/uikit",
"version": "1.0.0",
"description": "The UI \"framework\", designed for Mixery",
"type": "module",
"main": "dist/index.js",
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts",
"!/dist/**/test*.*"
],
"scripts": {
"test": "node dist/test.js",
"build": "tsc -b",
"build:test": "esbuild --bundle --outfile=dist/bundle.js src/test.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MixeryOSS/uikit.git"
},
"keywords": [
"ui",
"jsx",
"tsx"
],
"author": "nahkd123",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MixeryOSS/uikit/issues"
},
"homepage": "https://github.com/MixeryOSS/uikit#readme",
"dependencies": {
"@mixery/state-machine": "^1.0.0"
},
"devDependencies": {
"esbuild": "^0.18.10",
"typescript": "^5.1.6"
}
}