-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 902 Bytes
/
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
{
"name": "@robolex/sure",
"version": "0.11.2",
"type": "module",
"exports": {
".": {
"import": "./esm/index.js",
"types": "./esm/index.d.ts"
}
},
"types": "./esm/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"prepublish": "npm run build",
"clean": "rm -rf ./esm",
"dev": "tsc --watch --project tsconfig.build.json",
"tsc:ci": "tsc --noEmit",
"tsc": "tsc --noEmit --watch",
"lint": "eslint \"src/**/*.ts*\" --quiet",
"lint:warn": "eslint \"src/**/*.ts*\"",
"test:w": "vitest run",
"test:ui": "vitest --ui",
"test": "vitest"
},
"devDependencies": {
"eslint": "8.51.0",
"eslint-config-custom": "workspace:*",
"tsconfig": "workspace:*",
"typescript": "5.3.0-beta",
"vitest": "^0.34.6"
}
}