-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.95 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.95 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
{
"name": "movenext",
"version": "1.0.1",
"private": false,
"license": "MIT",
"main": "dist/cjs/source.js",
"module": "dist/esm/source.js",
"homepage": "https://serhat-m.github.io/moveNext",
"repository": {
"type": "git",
"url": "git+https://github.com/serhat-m/movenext.git"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest --run --reporter verbose",
"dev": "vite --host",
"build:react": "vite build",
"build:esm": "tsc ./src/package/source.ts --moduleResolution Node --declaration --module ES6 --outDir dist/esm",
"build:cjs": "tsc ./src/package/source.ts --moduleResolution Node --declaration --module CommonJS --outDir dist/cjs",
"build:package": "rm -rf dist && npm run build:esm && npm run build:cjs",
"prettier": "prettier --log-level log --check '**/*.{js,jsx,ts,tsx,json,yml,yaml,css,html,md,mdx}'",
"prettier:fix": "prettier --log-level log --write '**/*.{js,jsx,ts,tsx,json,yml,yaml,css,html,md,mdx}'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint --fix . --ext .js,.jsx,.ts,.tsx",
"lint:staged": "lint-staged",
"predeploy": "npm run build:react",
"deploy": "gh-pages -d build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.1",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@vanilla-extract/css": "^1.13.0",
"@vanilla-extract/sprinkles": "^1.6.1",
"@vanilla-extract/vite-plugin": "^3.9.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"eslint": "^8.47.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-vitest": "^0.2.8",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"mutative": "^0.6.0",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rfdc": "^1.3.0",
"the-new-css-reset": "^1.9.0",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-svgr": "^3.2.0",
"vitest": "^0.34.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,yml,yaml,css,html,md,mdx}": [
"prettier --log-level log --write"
],
"*.{js,jsx,ts,tsx,json}": [
"eslint --fix",
"eslint"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"javascript",
"typescript",
"array",
"data",
"navigation",
"arrow keys",
"logical",
"dataset",
"next",
"previous",
"prev",
"move",
"index",
"up",
"down",
"select",
"activate"
]
}