-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.24 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
{
"name": "@kreattix/constants",
"version": "0.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/kreattix-constants.cjs.js",
"module": "./dist/kreattix-constants.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"format": "prettier --write ./lib/**/* --config .prettierrc",
"lint": "eslint ./lib/**/*.ts --config .eslintrc",
"lint:fix": "eslint --fix ./lib/**/*.ts --config .eslintrc"
},
"dependencies": {
"@kreattix/colors": "../colors"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.0-beta.2",
"vite-tsconfig-paths": "^4.3.2"
},
"author": "Prince Patel",
"description": "A collection of constants for use in Kreattix projects.",
"homepage": "https://github.com/kreattix/constants?tab=readme-ov-file#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kreattix/constants.git"
},
"license": "MIT"
}