-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.6 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.6 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
{
"name": "@asmfx/ui-kit",
"version": "0.0.16-5",
"description": "React UI Kit",
"keywords": [
"UI",
"Kit",
"Hooks"
],
"source": "src/index.ts",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"author": "Asim Gunes",
"license": "ISC",
"scripts": {
"clean": "rm -rf dist",
"dev-build:tsc": "tsc --emitDeclarationOnly --declarationMap",
"dev-build:bundle": "node bundle.js --source-map",
"dev-build": "run-s clean dev-build:*",
"build:tsc": "tsc --noEmit",
"build:bundle": "node bundle.js --dts",
"version:prerelease": "yarn version --prerelease --no-git-tag-version",
"build": "run-s clean build:* version:prerelease",
"prepublish": "run-s clean build:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asmfx/ui-kit.git"
},
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/asmfx/ui-kit/issues"
},
"homepage": "https://github.com/asmfx/ui-kit#readme",
"files": [
"dist/**/*",
"src/**/*",
"LICENSE.md",
"README.md"
],
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/joi": "^17.2.3",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"esbuild": "^0.19.5",
"esbuild-node-externals": "^1.9.0",
"npm-dts": "^1.3.12",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"joi": "^17.12.0"
}
}