-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.03 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
{
"name": "@achareh/achar",
"version": "1.0.9",
"description": "Set of modules that we use in Achareh",
"repository": {
"type": "git",
"url": "git+https://github.com/achareh-co/achar.git"
},
"license": "MIT",
"keywords": [
"typescript",
"modules",
"achar"
],
"author": "Mohammad Saleh Fadaei <[email protected]> (https://twitter.com/ms_fadaei)",
"contributors": [
"Reza Ramezani"
],
"sideEffects": false,
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "vite --config ./playground/vite.config.ts",
"deploy": "vite --config ./playground/vite.config.ts build",
"build": "tsc && unbuild",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"test": "vitest --run",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"release": "yarn build && yarn test && npx standard-version && git push --follow-tags && npm publish"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*.test.mjs": "eslint --fix"
},
"devDependencies": {
"@babel/types": "7.20.2",
"@types/flat": "5.0.2",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.42.1",
"@typescript-eslint/parser": "5.42.1",
"c8": "7.12.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.2",
"jsdom": "20.0.2",
"lint-staged": "13.0.3",
"path": "0.12.7",
"prettier": "2.7.1",
"standard-version": "9.5.0",
"typescript": "4.8.4",
"unbuild": "0.9.4",
"vite": "3.2.3",
"vitest": "0.25.2"
},
"dependencies": {},
"peerDependencies": {},
"directories": {
"test": "tests"
}
}