Skip to content

Commit 5f40e6e

Browse files
committed
docs: update package.json
1 parent 8bd454a commit 5f40e6e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

package.json

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
11
{
2-
"name": "virtual-grid",
2+
"name": "@visualjs/virtual-grid",
33
"version": "0.0.0",
4+
"main": "./dist/virtual-grid.umd.js",
5+
"module": "./dist/virtual-grid.es.js",
6+
"types": "./dist/index.d.ts",
47
"scripts": {
58
"dev": "vite --force",
69
"build": "vite build && tsc -p ./tsconfig.json -emitDeclarationOnly",
710
"serve": "vite preview",
811
"test": "jest"
912
},
13+
"repository": {
14+
"type": "git",
15+
"url": "git+https://github.com/visualjs/virtual-grid.git"
16+
},
17+
"author": "visualjs",
18+
"license": "BSD-2-Clause",
19+
"bugs": {
20+
"url": "https://github.com/visualjs/virtual-grid/issues"
21+
},
22+
"homepage": "https://github.com/visualjs/virtual-grid#readme",
1023
"devDependencies": {
1124
"@types/jest": "^27.0.2",
1225
"jest": "^27.2.5",
1326
"ts-jest": "^27.0.6",
1427
"typescript": "^4.3.2",
1528
"vite": "^2.6.4"
16-
}
29+
},
30+
"files": [
31+
"dist/**/*.js",
32+
"dist/**/*.d.ts"
33+
]
1734
}

0 commit comments

Comments
 (0)