-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "verstak",
"version": "0.24.508",
"description": "Verstak - Front-End Library",
"publisher": "Nezaboodka Software",
"license": "Apache-2.0",
"type": "module",
"main": "build/dist/source/api.js",
"types": "build/dist/source/api.d.ts",
"exports": {
".": "./build/dist/source/api.js",
"./html": "./build/dist/source/html/api.js",
"./express": "./build/dist/source/express/api.js"
},
"files": [
"build/dist/source/**/*.*"
],
"repository": {
"type": "git",
"url": "https://github.com/nezaboodka/verstak.git"
},
"keywords": [
"nezaboodka",
"reactronic",
"state management",
"rendering",
"consistent",
"reactive",
"reactivity",
"transactional",
"asynchronous",
"ui"
],
"bugs": {
"url": "https://github.com/nezaboodka/verstak/issues"
},
"homepage": "https://github.com/nezaboodka/verstak/blob/master/README.md#readme",
"dependencies": {
"@types/linkify-it": "^3.0.5",
"@emotion/css": "^11.13.4",
"markdown-it": "^14.1.0",
"markdown-it-prism": "^2.3.0",
"prismjs": "^1.29.0",
"reactronic": "^0.24.501"
},
"devDependencies": {
"@types/markdown-it": "14.1.2",
"@types/node": "22.8.6",
"@types/prismjs": "1.26.5",
"@typescript-eslint/eslint-plugin": "8.12.2",
"@typescript-eslint/parser": "8.12.2",
"ava": "6.2.0",
"c8": "10.1.2",
"eslint": "9.14.0",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.5.4"
},
"scripts": {
"build": "eslint source/**.ts test/**.ts && tsc --rootDir .",
"fix": "eslint --fix source/**.ts test/**.ts",
"pack": "eslint source/**.ts test/**.ts && tsc --sourceMap false --removeComments true --rootDir .",
"test": "ava",
"cover": "c8 ava && open build/coverage/index.html"
}
}