-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 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
{
"name": "@kreattix/colors",
"version": "1.0.0",
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/kreattix-colors.cjs.js",
"module": "./dist/kreattix-colors.js",
"files": [
"dist"
],
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --write ./lib/**/* --config .prettierrc",
"lint": "eslint ./lib/**/*.ts --config .eslintrc",
"lint:fix": "eslint --fix ./lib/**/*.ts --config .eslintrc"
},
"dependencies": {
"sass": "^1.77.8"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.2",
"@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",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"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 colors for use in Kreattix projects.",
"homepage": "https://github.com/kreattix/colors?tab=readme-ov-file#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kreattix/colors.git"
},
"license": "MIT"
}