-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.26 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.26 KB
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
{
"name": "typed-fields",
"version": "1.0.0-rc.1",
"description": "Typed fields for TypeScript, force casting the data type to avoid runtime errors",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.iife.js",
"source": "./src/index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest -c jest.config.cjs",
"build": "rollup -c",
"watch": "rollup -c -w"
},
"keywords": [],
"author": "thanhtunguet <ht@thanhtunguet.info>",
"repository": {
"type": "git",
"url": "https://github.com/thanhtunguet/typed-fields"
},
"license": "MIT",
"type": "module",
"dependencies": {
"dayjs": "^1.11.18",
"reflect-metadata": "^0.2.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-typescript": "^7.27.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^22.13.10",
"babel-jest": "^30.1.2",
"jest": "^30.1.3",
"jest-environment-node": "^30.1.2",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.4.2",
"typescript": "^5.9.2"
}
}