-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 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
{
"name": "@enspirit/ostk",
"version": "0.0.7",
"description": "Toolkit to help process object streams",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/",
"README.md",
"package.json"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup ./src",
"fio:build": "finitio bundle tests/fixtures/schema.fio --target typescript > tests/fixtures/schema.ts",
"pretest": "npm run fio:build",
"test": "vitest run",
"pretest:watch": "npm run fio:build",
"test:watch": "vitest"
},
"keywords": [],
"author": "Louis Lambeau <[email protected]>",
"license": "ISC",
"dependencies": {
"lodash": "^4.17.21",
"finitio": "next",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.19",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.0"
}
}