-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
33 lines (33 loc) · 863 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
{
"name": "destiny-ui",
"description": "A reactive UI library for JavaScript and TypeScript.",
"version": "0.7.0",
"main": "./dist/mod.js",
"types": "./src/mod.ts",
"type": "module",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"typescript": "^5.2.2"
},
"scripts": {
"lint": "npm run lint:types && npm run lint:code",
"lint:code": "eslint src",
"lint:types": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"watch": "tsc -w"
},
"keywords": [
"javascript",
"framework",
"typescript",
"ui",
"frontend",
"reactive-programming"
],
"repository": "https://github.com/0kku/destiny",
"author": "Okku (https://github.com/0kku/)",
"license": "OSL-3.0"
}