-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.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
{
"name": "mobbing-query",
"description": "A very tiny wrapper around tanstack/query-core to provide observable queries inside mobx",
"author": "Ahmed Azzam",
"version": "1.0.7",
"repository": {
"type": "git",
"url": "https://github.com/sandstone991/MobQ"
},
"main": "./dist/mobbing-query.cjs",
"module": "./dist/mobbing-query.mjs",
"exports": {
".": {
"require": "./dist/mobbing-query.cjs",
"import": "./dist/mobbing-query.mjs",
"types": "./dist/index.d.ts"
},
"./dist/": {
"import": "./dist/",
"require": "./dist/",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --host",
"build": " tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts && copyfiles ./package.json build",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint:scripts": "eslint . --ext .ts",
"lint:styles": "stylelint ./**/*.{css,scss}",
"format:scripts": "prettier . --write",
"format:styles": "stylelint ./**/*.{css,scss} --fix",
"format": "npm run format:scripts && npm run format:styles"
},
"devDependencies": {
"@tanstack/query-core": "^5.0.0",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.1",
"copyfiles": "^2.4.1",
"dts-bundle-generator": "^9.2.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"mobx": "^6.0.0",
"postcss": "^8.4.33",
"postcss-scss": "^4.0.9",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"stylelint": "^16.2.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-sass-guidelines": "^11.0.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
},
"peerDependencies": {
"@tanstack/query-core": "^5.0.0",
"mobx": "^6.0.0"
}
}