forked from ninja/ninjakit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.11 KB
/
package.json
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
{
"dependencies": {
"react-icons": "4.3.1"
},
"devDependencies": {
"@commitlint/cli": "16.0.0",
"@commitlint/config-conventional": "16.0.0",
"@playwright/test": "1.17.1",
"@fontsource/roboto": "4.5.1",
"@sentry/react": "6.16.1",
"@sentry/tracing": "6.16.1",
"@testing-library/jest-dom": "5.16.1",
"@testing-library/react": "12.1.2",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "27.0.3",
"@types/node": "17.0.5",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.8.1",
"@typescript-eslint/parser": "5.8.1",
"@vitejs/plugin-react": "1.1.3",
"esbuild-runner": "2.2.1",
"eslint": "8.5.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-simple-import-sort": "7.0.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.4.5",
"lint-staged": "12.1.4",
"npm-run-all": "4.1.5",
"prettier": "2.5.1",
"prettier-plugin-organize-attributes": "0.0.4",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router-dom": "6.2.1",
"semantic-release": "18.0.1",
"typescript": "4.5.4",
"vite": "2.7.7",
"vite-plugin-pwa": "0.11.12",
"workbox-window": "6.4.2"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"exports": {
".": {
"import": "./dist/ninjakit.es.js",
"require": "./dist/ninjakit.umd.js"
},
"./color-scheme": "./dist/color-scheme/index.js",
"./color-scheme/default.css": "./dist/color-scheme/default.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"
},
"repository": {
"type": "git",
"url": "https://github.com/ninja/ninjakit.git"
},
"sideEffects": false,
"scripts": {
"build": "run-p build:**",
"build:color-scheme": "tsc --project tsconfig-color-scheme.json && cp src/lib/color-scheme/*.css dist/color-scheme",
"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",
"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": "jest",
"test:coverage": "jest --coverage",
"test:integration": "playwright test"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "0.0.0-semantic-release"
}