-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "attr-i18n",
"version": "1.0.0",
"description": "Internationalization for Vanilla JS projects",
"keywords": [
"i18n",
"translate",
"translation",
"vanilla i18n",
"vanilla translate",
"vanilla translation",
"internationalization",
"vanilla internationzation"
],
"homepage": "https://attr-i18n.atanas.info",
"bugs": {
"url": "https://github.com/scriptex/attr-i18n/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "./dist/index.cjs",
"style": "dist/index.css",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "github:scriptex/attr-i18n"
},
"scripts": {
"copy": "cp -r dist demo/dist",
"lint": "eslint",
"clean": "rm -rf dist demo/dist",
"build": "yarn clean && microbundle && yarn copy"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"microbundle": "0.15.1",
"typescript": "5.7.2"
},
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js"
}