-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.27 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
{
"name": "mxik",
"version": "1.1.4",
"author": {
"name": "Aza Broflovski",
"url": "https://github.com/azabroflovski",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/azabroflovski/mxik.git"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"devDependencies": {
"@antfu/eslint-config": "^2.23.1",
"@types/bun": "latest",
"eslint": "^9.7.0",
"typescript": "^5.5.3"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/azabroflovski/mxik/issues"
},
"description": "API client over tasnif.soliq.uz for finding mxik codes (written in TypeScript)",
"files": [
"dist",
"lib/**/*.d.ts"
],
"keywords": [
"mxik",
"mxikjs",
"mxik-js",
"ikpu",
"tasnif.soliq.uz",
"soliq.uz",
"soliq"
],
"private": false,
"scripts": {
"build": "bun test && tsc",
"test": "bun test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"type": "module",
"types": "./dist/index.d.ts",
"dependencies": {
"vitepress": "^1.6.3"
}
}