-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.95 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
{
"name": "typedots",
"type": "module",
"version": "0.0.4",
"description": "A simple way to get and set object properties using paths (aka dot notation) with TypeScript support",
"author": "Charles Gruenais",
"license": "MIT",
"homepage": "https://github.com/Dschungelabenteuer/typedots/tree/main/#readme",
"repository": {
"type": "git",
"url": "https://github.com/Dschungelabenteuer/typedots"
},
"bugs": {
"url": "https://github.com/Dschungelabenteuer/typedots/issues"
},
"keywords": [
"Typedots",
"Object path",
"Path",
"Dot notation",
"Strongly typed objects",
"Access",
"Object hierarchy",
"Navigation",
"Traversal",
"Data structure",
"Property access",
"Nested objects",
"Data retrieval",
"Type safety",
"Code completion",
"Reflection",
"TypeScript",
"Autocompletion",
"Suggestions"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"coverage": "vitest run --coverage",
"check": "pnpm lint && pnpm test",
"lint": "eslint --ext .ts .",
"test": "vitest",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.5",
"@yungezeit/eslint-config-typescript": "^0.0.13",
"eslint": "^8.54.0",
"rollup": "^4.6.1",
"rollup-plugin-dts": "^6.1.0",
"tslib": "^2.6.2",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
}
}