-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.3 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"dependencies": {
"@floating-ui/react-dom": "1.1.0",
"react-icons": "4.7.1"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@fontsource/roboto": "4.5.8",
"@playwright/test": "1.29.1",
"@types/node": "18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"@vitejs/plugin-react": "3.0.0",
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-playwright": "0.11.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "8.0.0",
"husky": "8.0.2",
"identity-obj-proxy": "3.0.0",
"lint-staged": "13.1.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.1",
"prettier-plugin-organize-attributes": "0.0.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.6.1",
"semantic-release": "19.0.5",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-plugin-pwa": "0.14.0",
"workbox-window": "6.5.4"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"exports": {
".": {
"import": "./dist/ninjakit.es.js",
"require": "./dist/ninjakit.umd.js"
},
"./color-scheme/default.css": "./dist/color-scheme/default.css",
"./color-scheme/enterprise.css": "./dist/color-scheme/enterprise.css",
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"homepage": "https://ninjakit.dev",
"keywords": [
"user interface",
"user experience",
"ui",
"ux",
"web",
"responsive",
"mobile",
"desktop",
"react",
"components",
"hooks",
"material",
"material 3",
"design",
"css",
"styles"
],
"license": "Apache-2.0",
"main": "./dist/ninjakit.umd.js",
"module": "./dist/ninjakit.es.js",
"name": "ninjakit",
"peerDependencies": {
"@fontsource/roboto": ">=4",
"react": ">=17",
"react-dom": ">=17"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/ninja/ninjakit.git"
},
"sideEffects": false,
"scripts": {
"build": "run-p build:**",
"build:lib": "vite build --mode=lib",
"build:types": "tsc --emitDeclarationOnly --project tsconfig-types.json",
"check": "run-p check:**",
"check:config": "prettier --check .",
"check:scripts": "eslint --ext .ts,.tsx .",
"check:types": "tsc --noEmit",
"copy:color-schemes": "mkdir -p dist/color-scheme && cp src/lib/color-scheme/*.css dist/color-scheme",
"extract:color-scheme": "node src/lib/color-scheme/extract.mjs",
"fix": "run-s fix:scripts fix:config",
"fix:config": "prettier --write .",
"fix:scripts": "eslint --ext .ts,.tsx --fix .",
"start": "vite",
"start:production": "vite build && vite preview",
"test": "playwright test",
"test:chrome": "playwright test --project='Desktop Chrome'",
"test:firefox": "playwright test --project='Desktop Firefox'",
"test:safari": "playwright test --project='Desktop Safari'",
"test:mobile:chrome": "playwright test --project='Mobile Chrome'",
"test:mobile:safari": "playwright test --project='Mobile Safari'"
},
"types": "dist/index.d.ts",
"version": "0.0.0-semantic-release"
}