-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.93 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
{
"name": "onlinesim-js-api",
"version": "1.1.2",
"description": "Library for OnlineSim Api",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"clean": "rimraf lib && rimraf dist",
"build": "vite build",
"prepare": "npm run clean && npm run build",
"lint": "tslint --project tsconfig.json ./src/*.ts",
"lint:fix": "npm run lint -- --fix",
"test": "jest",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:clean-dev": "vitepress dev docs --clean-cache",
"docs:preview": "vitepress preview docs"
},
"repository": {
"type": "git",
"url": "https://github.com/s00d/onlinesim-api-js.git"
},
"bugs": {
"url": "https://github.com/s00d/onlinesim-api-js/issues"
},
"homepage": "https://github.com/s00d/onlinesim-api-js",
"keywords": [
"sms",
"OnlineSim",
"Api",
"shell",
"serve",
"hmr",
"browser",
"script",
"opie",
"manion",
"typescript"
],
"author": "s00d",
"license": "ISC",
"dependencies": {
"axios": "^1.7.8"
},
"files": [
"dist"
],
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.17.7",
"@types/source-map": "^0.5.7",
"jest": "^29.7.0",
"rimraf": "^3.0.2",
"source-map": "^0.7.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^4.5.5",
"vite-plugin-dts": "^4.3.0",
"vitepress": "^1.5.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.9.6",
"@rollup/rollup-win32-x64-msvc": "^4.9.6"
},
"packageManager": "[email protected]+sha256.7bf0c78a106332886ea4e59641fd819b1af953edcd72c4d93a32b1c71000ee67"
}